home *** CD-ROM | disk | FTP | other *** search
/ SPACE 1 / SPACE - Library 1 - Volume 1.iso / misc~1 / 199 / err.doc < prev    next >
Text File  |  1988-03-14  |  3KB  |  50 lines

  1. Compiler Error Listing        Commentary
  2. ----------------------        ----------
  3. ®ister            tried to take the address of a register
  4. arg redeclared            re-declaration of a function argument
  5. bad arg decl            declaring an argument that isn't defined
  6. bad call            improper function call
  7. bad char const            improper syntax of a char constant
  8. bad cvt                compiler bug (should not happen)
  9. bad define            bad #define declaration
  10. bad incr            improper use of ++ or --
  11. bad indexing            improper use of [expr] 
  12. bad indirection            improper use of * (pointer indirection)
  13. bad lvalue            improper left hand side of an assignment
  14. bad macro            undefined macro
  15. bad preprocess            preprocessor doesn't understand the line
  16. bad sizeof            bad syntax for a sizeof expression
  17. bad struct decl            improper structure declaration
  18. can't break            break statement not inside a loop
  19. can't continue            continue statement not inside a loop
  20. can't open            named file could not be opened for input
  21. can't take address        compiler can't figure out something's address
  22. expr too complicated        simplify the expression with temp variables
  23. not a constant            need a constant value but didn't get one
  24. only 32 bit reg's        tried to apply "register" to something too big
  25. only local register vars    you can only declare local register variables
  26. out of expr nodes        out of space for expression tree nodes
  27. redeclare SSS            attempt to redeclare a global symbol
  28. redefine struct            multiple structure declarations
  29. SSS not a field            the symbol is not defined for the structure
  30. SSS not a function        the symbol is not defined as a function
  31. SSS undefined            symbol is used before declared
  32. static ignored            the "static" storage class is not implemented
  33. strings too large        ran out of space for strings
  34. struct assign nyi        struct assignment not yet implemented
  35. symbol space full        out of space for symbol names
  36. symbol table full        out of space for the symbol table
  37. syntax error, X should be Y    unexpected token was found
  38. too many case's            switch statement too big (remove case labels)
  39. too many defines        out of space for #define's
  40. too many fields            out of space for structure elements
  41. too many locals            declaring more locals than compiler can handle
  42. too many macro args        too many arguments to a macro
  43. too many strings        too many strings
  44. too many types            out of space for type definitions
  45. undefined symbol, SSS        symbol is used before declared
  46. unknown node XXX        internal compiler error (should not happen)
  47. X (N) not a factor        bad expression syntax
  48. (coerce)            compiler bug
  49. (declare)            compiler bug (shouldn't happen)
  50.